GtkStyleContext: Add gtk_render_slider().
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 27 Mar 2010 20:21:34 +0000 (21:21 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:57 +0000 (15:36 +0100)
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index 41fb1b8f86ba1f5d81e75113ca6f5120d9b7d7b7..cdf6c4b73bfde15be5d5ff7896ebf346d07e5b62 100644 (file)
@@ -776,5 +776,27 @@ gtk_render_line (GtkStyleContext *context,
   engine_class->render_line (priv->theming_engine, cr, x0, y0, x1, y1);
 }
 
+void
+gtk_render_slider (GtkStyleContext *context,
+                   cairo_t         *cr,
+                   gdouble          x,
+                   gdouble          y,
+                   gdouble          width,
+                   gdouble          height,
+                   GtkOrientation   orientation)
+{
+  GtkStyleContextPrivate *priv;
+  GtkThemingEngineClass *engine_class;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (cr != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+  _gtk_theming_engine_set_context (priv->theming_engine, context);
+  engine_class->render_slider (priv->theming_engine, cr, x, y, width, height, orientation);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index 6a62dae039c4680f8b5300352865e6b4890288b3..710f689c4dc15f1b00c138a8322e93286fb597cc 100644 (file)
@@ -156,6 +156,13 @@ void gtk_render_line     (GtkStyleContext *context,
                           gdouble          y0,
                           gdouble          x1,
                           gdouble          y1);
+void gtk_render_slider   (GtkStyleContext *context,
+                          cairo_t         *cr,
+                          gdouble          x,
+                          gdouble          y,
+                          gdouble          width,
+                          gdouble          height,
+                          GtkOrientation   orientation);
 
 G_END_DECLS